home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Sample Code / AOCE Sample Code / PowerTalk Access Modules / Sample SMSAM / SampleSMSAM Source / StatusMonitor / UApplicationSecondStomach.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-28  |  1.2 KB  |  51 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        UApplicationSecondStomach.h
  3.  
  4.     Contains:    Second Stomach Application
  5.  
  6.     Written by:    Steve Datnow
  7.  
  8.     Copyright:    © 1992 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History:
  11.  
  12.         1/7/92      SLD        Created
  13.  
  14.     To Do:
  15. */
  16.  
  17. #ifndef __UAPPLICATIONSecondStomach__
  18. #define __UAPPLICATIONSecondStomach__
  19.  
  20. #ifndef __UAPPLICATION__
  21. #include <UApplication.h>
  22. #endif
  23.  
  24. //----------------------------------------------------------------------------------------
  25. // TApplicationSecondStomach
  26. //----------------------------------------------------------------------------------------
  27.  
  28. class TApplicationSecondStomach : public TApplication
  29. {
  30.     public:
  31.         
  32.         // Construction/Destruction
  33.         virtual pascal void IApplicationSecondStomach();
  34.         
  35.         // Documents
  36.         virtual pascal TDocument* DoMakeDocument(CommandNumber itsCommandNumber, TFile* itsFile );    //    Override
  37.         
  38.         // Commands
  39.         virtual pascal void DoSetupMenus(); // Override        
  40.         virtual pascal void DoMenuCommand(CommandNumber aCommandNumber); // Override
  41.     
  42.         virtual pascal void DoAppleCommand(CommandNumber aCommandNumber,
  43.                                         const AppleEvent& message,
  44.                                         const AppleEvent& reply);    
  45.     private:
  46.         
  47.         long fUniqueSessionID;
  48. };    
  49.  
  50. #endif
  51.